@charset "UTF-8";

html{
	/* 根元素設定為10px 一般browser標準為16px */
	font-size:62.5%;   
}
body{
	font-family:'Roboto', sans-serif,'微軟正黑體';
	font-weight: 200;
	/* body字型設定12px */
	font-size:1.6rem;

}
a,a:link,a:visited,a:active{
	color:#7EB5F9 ;
	text-decoration: none;
}
button {
    outline: none;
}
li{
	list-style-type: none;
}

h3{
	text-align: center;

}
h3 img{
	vertical-align:-7px;
}
#map {
	display:block;
	position:relative;
	margin:10px auto;
	height: 65vh;
	width: 80%;
}
.wrapper{
	display: table;
	width:80%;
	margin:0 auto;
	background-color: #EDEDED;

}
.dock{
	display: table-cell;
	width:350px;
	vertical-align: middle;
}
.dock > ul > li{
	float:left;
}

.dock > ul > li a{
	margin:10px 20px;
	font-size: 40px;
	color:#f1b400;
	text-align: center;
	border:1px solid #f1b400;
	padding:5px;
	font-weight: 300;
	transition: all 0.5s;
}

.dock > ul > li a:hover{
	display: block;
	font-size: 70px;
	margin-top:-30px;

}
.clearfix::after{
		content:"";
		display:block;
		clear:both;
}
article .description{
	display: table-cell;
	width: 50%;
	padding: 0 10px;
	vertical-align:middle;
	border-left: 5px solid black;
	line-height: 1.5em;
}



/* smart phone setting */
/*ipad*/
@media (max-width: 1024px) {
  body {
    background-image: none;
  }
}
/*other smart device*/
@media (max-width: 768px) {
.wrapper{
	display: block;
}
.dock{
	display: block;
}
article .description{
	display: block;
	width:100%;
}
.dock{
	display: block;
	width:100%;
	vertical-align: middle;
}
.dock > ul > li a{
	margin:10px 10px;
	font-size: 30px;
	color:#f1b400;
	text-align: center;
	border:1px solid #f1b400;
	padding:5px;
	font-weight: 300;
	transition: all 0.5s;
}

.dock > ul > li a:hover{
	display: block;
	font-size: 40px;
	margin-top:-20px;
}


}